home *** CD-ROM | disk | FTP | other *** search
/ PC User 2003 December / Australian PC User - December 2003 (CD2).iso / software / apps / files / dwmx2k4.exe / Disk1 / data1.cab / Configuration_En / Commands / informDS.js < prev    next >
Encoding:
JavaScript  |  2003-09-05  |  728 b   |  33 lines

  1. // Copyright 2002, 2003 Macromedia, Inc. All rights reserved.
  2.  
  3. var PLATFORM = navigator.platform;
  4. var ICON_URL = (PLATFORM == "Win32") ? "../Shared/MM/Images/infoIconWin.gif" : "dwres:2";
  5.  
  6. function isDOMRequired()
  7.     // Return false, indicating that this object is available in code view.
  8.     return false;
  9. }
  10.  
  11. function setMessage(message)
  12. {
  13.   document.msg.innerHTML = message;
  14. }
  15.  
  16. function setResult(result)
  17. {
  18.   dwscripts.setCommandReturnValue(document.cbDoNotAsk.checked);
  19.   window.close();
  20. }
  21.  
  22. function initialize()
  23. {    
  24.   // Use the right icon for the platform.
  25.   document.confirmIcon.src = ICON_URL; 
  26.  
  27.   // set focus to the ok button
  28.   if (document.button)
  29.   {
  30.     document.button.focus();
  31.   }
  32. }